Welcome![Sign In][Sign Up]
Location:
Search - array class

Search list

[OS programMFC_Array_Tutorial

Description: 一个使用MFC的VC++数组类代码,大家都知道,MFC的数组类可以存放任何数据类型,C++的常规数组在使用前必须将其定义成能够容纳所有可能需要的元素,而MFC数组类创建的对象可以根据需要动态地增大或减小,数组的起始下标是0,而上限可以是固定的,也可以随着元素的增加而增加,数组在内存中的地址仍然是连续分配的,希望通过我这个程序示例让你对基于MFC的数组类有一个更好的理解,教您学会使用这种数组类。 -One using MFC in VC++ array class code, and we all know, MFC array classes can store any data type, C++ General array before use must be defined to accommodate all possible needs of the elements, and MFC array class object created dynamically according to need to increase or decrease the initial array subscript is 0, while the upper limit can be fixed, also increased with the elements of the array' s address in memory is still a continuous distribution, and I hope Through my example, this program allows you to array-based MFC class has a better understanding of teaching you learn to use this array class.
Platform: | Size: 11264 | Author: madud00082 | Hits:

[Windows Developjishimoni1

Description: 定义了一个整型数组类Array,数组长度为30个元素。数组的初始化数据来源以及程序结束后数组的数据保存都指向工程文件夹下的文本文件 "vdata.txt"。即,创建数组对象时,在构造函数中读该取文件获得数据(首次创建对象时文件是打不开的,数组就没有初始化值),当程序结束时, 析构函数将数据写入上述文件。-Defines an integer array class Array, the array length of 30 elements. Initialization of the array after the end of data sources and process the data stored point array project folder text file " vdata.txt" . That is, create an array object, the constructor of the access file for read data (for the first time when the file is not open to create an object, the array is not initialized to value), when the program ends, the destructor writes the data into the document.
Platform: | Size: 956416 | Author: 陈思 | Hits:

[matlabhii

Description: class a chopper.is also called as step down chopper mostly used in pv array characterstics for the mppt algorithms
Platform: | Size: 9216 | Author: srid | Hits:

[OS programarray

Description: 改进后的变长数组管理模板类,比前面的版本增加了_3DPOINT类,支持空间矢量和、积、差等运算-Improved management of variable-length array template class. comparing the previous version,_3DPOINT class is added. Which supports vector addition,mutiply opperations are supported.
Platform: | Size: 10240 | Author: zeng rongjia | Hits:

[JSP/JavaTestTreeSet

Description: 这是一个测试treeset容器的小程序,可以用来对array类进行简单的学习~-This is a test treeset container applet can be used for a simple array class to learn ~
Platform: | Size: 2048 | Author: my name | Hits:

[DSP programspuc2.3.1

Description: Readme Complex class is very similar to the Standard C++ library complex class and the standard C++ class could be substituted in many cases. Code is wrapped in namespace SPUC SPUC DSP C++ source code library directory structure array - Array class from TNT library comm - primarily digital communications related classes equalizers - Maximum Likelihood Sequence Detector, RLS and LMS algorithms generic - most of the code/algorithms functions - mostly functions (as opposed to classes) matrix - Matrix/Vector class from IT++ specializations - mostly variations of basic blocks in generic utility - classes to aid in debug examples - Examples directory including qpsk - QPSK + QPSK_VR examples-Readme Complex class is very similar to the Standard C++ library complex class and the standard C++ class could be substituted in many cases. Code is wrapped in namespace SPUC SPUC DSP C++ source code library directory structure array - Array class from TNT library comm - primarily digital communications related classes equalizers - Maximum Likelihood Sequence Detector, RLS and LMS algorithms generic - most of the code/algorithms functions - mostly functions (as opposed to classes) matrix - Matrix/Vector class from IT++ specializations - mostly variations of basic blocks in generic utility - classes to aid in debug examples - Examples directory including qpsk - QPSK + QPSK_VR examples
Platform: | Size: 429056 | Author: Prabhat | Hits:

[JSP/Javaarray

Description: 定义一数组,再定义一整型数组,此整型数组属于动态分配大小,所有大小由程序指定,并在此基础上实现反转类、排序类-Define an array, and then define an integer array, the array is dynamically allocated integer size, all size specified by the program, and based on the reverse of this class, sort class
Platform: | Size: 1024 | Author: gaoyuan | Hits:

[Data structsclass-array

Description: a program that perfect for beginners of learning array in c++!
Platform: | Size: 107520 | Author: spidey | Hits:

[GUI DevelopMFC_class

Description: 文档中主要是一些MFC常用类、成员函数、数组类、Cstring类、CTime类、CPoint类,可以方便平时的使用-The main document used in some MFC classes, member functions, an array class, Cstring class, CTime class, CPoint class, you can easily make the usual Use
Platform: | Size: 26624 | Author: dangdang | Hits:

[Windows DevelopMyArray

Description: Define array class: MyArray. It s satisfied with demands as follows: 1. The class is used to save integer 2. The class can check array subscripting overflow 3. The client can use MyArray you define like as following codes in the main: void main() { MyArray intArray(10) // Here 10 is the number of intArray s elements. for (int i=0 i<10 i++) intArray[i] = i * i // Initialize the intArray s elements cout << intArray // Print every element in the intArray } 4. Here is additional demand: think over how to save any data rather than integer.,-Define array class: MyArray. It s satisfied with demands as follows: 1. The class is used to save integer 2. The class can check array subscripting overflow 3. The client can use MyArray you define like as following codes in the main: void main() { MyArray intArray(10) // Here 10 is the number of intArray s elements. for (int i=0 i<10 i++) intArray[i] = i* i // Initialize the intArray s elements cout << intArray // Print every element in the intArray } 4. Here is additional demand: think over how to save any data rather than integer.
Platform: | Size: 234496 | Author: weiqi | Hits:

[Mathimatics-Numerical algorithmsClass-and-object-

Description: 1. 建立一个对象数组,内放5个学生的数据(学号、成绩)。请根据下面要求实现类中的功能,其他的函数根据需要创建。 (1). 用指针指向数组首元素,输出第1,3,5个学生的数据。 (2). 以对象指针作为形式参数找出5个学生中学习成绩最高者。注:函数名为max 2. 定义一个圆类,分别用以下方法计算圆的面积和周长。 (1). 用成员函数实现求圆的面积和周长。 (2). 用友元函数求圆的面积和周长 -(1) create an array of objects, put the data of the five students (results). According to the following requirements in the class of functions, and other functions need to create. (1) with a pointer to the first element of the array, the output data of 1, 3 and 5 students. (2). Object pointer as a formal parameter to identify the five students in grades. Note: function called max 2 define a circle class, use the following methods to calculate the circle area and perimeter. (1) member function of circular area and perimeter. (2). UF Function round the area and perimeter
Platform: | Size: 2048 | Author: 苏树峰 | Hits:

[Process-Thread1.2-DynamicArray-class-better

Description: 动态数组的生成程序,一个很好的促学c++的工具,希望大家光顾-Dynamic Array genetor dgdg d gdd d d da
Platform: | Size: 148480 | Author: wwm | Hits:

[Home Personal applicationjava-Using-Array-for-Queue

Description: 用java语言中的数组来实现队列,其中扩容方法为在原数组的基础上乘以2,另外也测试了用java中Vector类实现队列。-Array using java language java Vector class queue queue, which expansion method is superior to the original array 2, is also tested.
Platform: | Size: 3072 | Author: 刘昭强 | Hits:

[OtherArray

Description: 用类实现动态数组的各种操作,获取数组大小,重置数组大小,获取元素,重载[]操作符,追加新元素,删除元素,插入元素,重载=-With class implements a dynamic array of various operations, access to the array size, the size of the array is reset, access to the elements, overloaded [] operator, additional new elements, remove elements, insert elements overloaded =
Platform: | Size: 4096 | Author: songyanzhi | Hits:

[source in ebookArray-Complex

Description: 复数类的C++实现-Complex array 头文件及源代码-The complex class C++-Complex array header files and source code
Platform: | Size: 3072 | Author: 于练 | Hits:

[CSharpFirst_Test1

Description: 1、使用System.Array类的方法获取已知数组(数组元素为80,90,67,89,78,85,45,69,77,95)的维数、长度,并对数组排序、反转。 提示:Rank,Length,Sort(),Reverse() 2、 使用Random方法生成随机数。数组A中有8个互不相同的元素,数组B中有5个互不相同的元素,A和B中的数为100以内的正整数。编程产生数组C,C中包含在A中但不在B中的元素。 任意输入两个正整数a,b, 求a+b的和, a,b的取值范围为1—10100 -System.Array class method to get the the known array (array elements 80,90,67,89,78,85,45,69,77,95) dimension, length, and array sorting, reverse . Tip: Rank, Length, Sort (), Reverse () 2, using the Random method to generate random numbers. There are eight distinct elements in the array A, array B, has 5 mutually different elements, A and B number is a positive integer of less than 100. Programmed to generate an array of C, C contains the element A but not B. Input any two positive integers a, b, seeking a+b and a, b of the range 1-10100
Platform: | Size: 57344 | Author: xiaobai66393 | Hits:

[Windows DeveloparrayOfStudent02

Description: 仿照课堂案例学生数组类设计一个动态数组类,并封装必要的函数成员,编写主函数进行测试。-Modeled classroom case students an array of class design a dynamic array class and encapsulates the necessary function members to write the main function for testing.
Platform: | Size: 312320 | Author: 刘智霞 | Hits:

[Other1

Description: 定义数组MyArray类。它满足的要求如下:1。该类用于保存整数;2。类可以检查数组下标溢出;3。客户端可以使用您定义为MyArray的主要代码:无效的main(){MyArray intarray(10);//这里10是intarray的元素的数目。对于(int i = 0;i < 10;i++)intarray [我] =我*我;//初始化intarray的元素cout << intarray;/ /打印中的每一个元素intarray}4。这是额外的需求:思考如何保存任何数据而不是整数。-Define array class: MyArray. It s satisfied with demands as follows: 1. The class is used to save integer 2. The class can check array subscripting overflow 3. The client can use MyArray you define like as following codes in the main: void main() { MyArray intArray(10) // Here 10 is the number of intArray s elements. for (int i=0 i<10 i++) intArray[i] = i* i // Initialize the intArray s elements cout << intArray // Print every element in the intArray } 4. Here is additional demand: think over how to save any data rather than integer.
Platform: | Size: 1024 | Author: ldd | Hits:

[Linux-Unixbuddyeditor_global

Description: Byte Array Class for linux API Driver.
Platform: | Size: 4096 | Author: lengtinwui | Hits:

[CSharpArray-Class

Description: 这是一个实矩阵类,矩阵大小可更改 (1)矩阵的加、减、数乘和乘等运算; (2)矩阵的转置运算; (3)矩阵列向量的最大值与最小值; (4)矩阵列向量的内积运算,范数; (5)方阵的特征值与特征向量。-This is a real matrix type, matrix size can be changed (1) matrix addition, subtraction, multiplication and multiplication and other operations (2) the matrix transpose operation (3) matrix column vector of the maximum and minimum ( 4) matrix column vector inner product, norm (5) matrix eigenvalues ​ ​ and eigenvectors.
Platform: | Size: 29696 | Author: sunshine | Hits:
« 1 2 34 5 6 7 8 9 10 ... 35 »

CodeBus www.codebus.net